Newer
Older
taehui / qwilight-fe / src / app / [language] / etc / loading.tsx
@Taehui Taehui on 16 Mar 205 bytes 2024-03-17 오전 1:28
import { useTranslations } from "next-intl";

import LoadingLayer from "@/LoadingLayer";

export default function Loading() {
  const t = useTranslations();

  return <LoadingLayer text={t("toEtc")} />;
}